home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1997 May / PC Plus Super CD Issue 127 (May 1997).iso / delphi1 / lessons.exe / lesson3 / CALC3 / CALC3.DFM / CALC3.txt
Encoding:
Text File  |  1996-01-02  |  3.0 KB  |  183 lines

  1. object CalcForm: TCalcForm
  2.   Left = 234
  3.   Top = 93
  4.   Width = 275
  5.   Height = 384
  6.   Caption = 'CalcForm'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   OnActivate = FormActivate
  13.   OnClose = FormClose
  14.   TextHeight = 16
  15.   object DisplayEd: TEdit
  16.     Left = 8
  17.     Top = 8
  18.     Width = 201
  19.     Height = 25
  20.     TabOrder = 0
  21.   end
  22.   object Btn8: TButton
  23.     Left = 8
  24.     Top = 41
  25.     Width = 60
  26.     Height = 33
  27.     Caption = '8'
  28.     TabOrder = 1
  29.     OnClick = Btn8Click
  30.   end
  31.   object Btn6: TButton
  32.     Left = 8
  33.     Top = 81
  34.     Width = 60
  35.     Height = 33
  36.     Caption = '6'
  37.     TabOrder = 2
  38.     OnClick = Btn6Click
  39.   end
  40.   object Btn4: TButton
  41.     Left = 8
  42.     Top = 121
  43.     Width = 60
  44.     Height = 33
  45.     Caption = '4'
  46.     TabOrder = 3
  47.     OnClick = Btn4Click
  48.   end
  49.   object Btn2: TButton
  50.     Left = 8
  51.     Top = 161
  52.     Width = 60
  53.     Height = 33
  54.     Caption = '2'
  55.     TabOrder = 4
  56.     OnClick = Btn2Click
  57.   end
  58.   object Btn0: TButton
  59.     Left = 8
  60.     Top = 201
  61.     Width = 60
  62.     Height = 33
  63.     Caption = '0'
  64.     TabOrder = 5
  65.     OnClick = Btn0Click
  66.   end
  67.   object Btn9: TButton
  68.     Left = 80
  69.     Top = 41
  70.     Width = 60
  71.     Height = 33
  72.     Caption = '9'
  73.     TabOrder = 6
  74.     OnClick = Btn9Click
  75.   end
  76.   object Btn7: TButton
  77.     Left = 80
  78.     Top = 81
  79.     Width = 60
  80.     Height = 33
  81.     Caption = '7'
  82.     TabOrder = 7
  83.     OnClick = Btn7Click
  84.   end
  85.   object Btn5: TButton
  86.     Left = 80
  87.     Top = 121
  88.     Width = 60
  89.     Height = 33
  90.     Caption = '5'
  91.     TabOrder = 8
  92.     OnClick = Btn5Click
  93.   end
  94.   object Btn3: TButton
  95.     Left = 80
  96.     Top = 161
  97.     Width = 60
  98.     Height = 33
  99.     Caption = '3'
  100.     TabOrder = 9
  101.     OnClick = Btn3Click
  102.   end
  103.   object Btn1: TButton
  104.     Left = 80
  105.     Top = 201
  106.     Width = 60
  107.     Height = 33
  108.     Caption = '1'
  109.     TabOrder = 10
  110.     OnClick = Btn1Click
  111.   end
  112.   object BtnEquals: TButton
  113.     Left = 80
  114.     Top = 240
  115.     Width = 129
  116.     Height = 33
  117.     Caption = '='
  118.     Font.Color = clRed
  119.     Font.Height = -19
  120.     Font.Name = 'Terminal'
  121.     Font.Style = [fsBold]
  122.     ParentFont = False
  123.     ParentShowHint = False
  124.     ShowHint = False
  125.     TabOrder = 11
  126.     OnClick = BtnEqualsClick
  127.   end
  128.   object BtnDiv: TButton
  129.     Left = 152
  130.     Top = 40
  131.     Width = 57
  132.     Height = 33
  133.     Caption = '/'
  134.     TabOrder = 12
  135.     OnClick = BtnDivClick
  136.   end
  137.   object BtnMult: TButton
  138.     Left = 152
  139.     Top = 80
  140.     Width = 57
  141.     Height = 33
  142.     Caption = '*'
  143.     TabOrder = 13
  144.     OnClick = BtnMultClick
  145.   end
  146.   object BtnMinus: TButton
  147.     Left = 152
  148.     Top = 120
  149.     Width = 57
  150.     Height = 33
  151.     Caption = '-'
  152.     TabOrder = 14
  153.     OnClick = BtnMinusClick
  154.   end
  155.   object BtnPlus: TButton
  156.     Left = 152
  157.     Top = 160
  158.     Width = 57
  159.     Height = 33
  160.     Caption = '+'
  161.     TabOrder = 15
  162.     OnClick = BtnPlusClick
  163.   end
  164.   object BtnDot: TButton
  165.     Left = 149
  166.     Top = 201
  167.     Width = 60
  168.     Height = 33
  169.     Caption = '.'
  170.     TabOrder = 16
  171.     OnClick = BtnDotClick
  172.   end
  173.   object ClearBtn: TButton
  174.     Left = 8
  175.     Top = 240
  176.     Width = 65
  177.     Height = 33
  178.     Caption = '&Clear'
  179.     TabOrder = 17
  180.     OnClick = ClearBtnClick
  181.   end
  182. end
  183.